home *** CD-ROM | disk | FTP | other *** search
/ Cre@te Online 2000 December / Cre@teOnline CD05.iso / MacSoft / XML Instance.sea / XML Instance / Required / ldapjdk.jar / com / netscape / sasl / mechanisms / SASLExternalMechanism.class (.txt)
Encoding:
Java Class File  |  1999-04-13  |  985 b   |  35 lines

  1. package com.netscape.sasl.mechanisms;
  2.  
  3. import com.netscape.sasl.SASLClientCB;
  4. import com.netscape.sasl.SASLClientMechanismDriver;
  5. import com.netscape.sasl.SASLException;
  6. import com.netscape.sasl.SASLSecurityLayer;
  7. import java.util.Properties;
  8.  
  9. public class SASLExternalMechanism implements SASLClientMechanismDriver {
  10.    private static final String LDAP_PROTOCOL = "LDAP";
  11.    private static final String MECHANISM_NAME = "EXTERNAL";
  12.    private String m_packageName;
  13.    private String m_mechanismName = "EXTERNAL";
  14.  
  15.    public byte[] startAuthentication(String var1, String var2, String var3, Properties var4, SASLClientCB var5) throws SASLException {
  16.       return null;
  17.    }
  18.  
  19.    public String getMechanismName() {
  20.       return this.m_mechanismName;
  21.    }
  22.  
  23.    public byte[] evaluateResponse(byte[] var1) throws SASLException {
  24.       return null;
  25.    }
  26.  
  27.    public boolean isComplete() {
  28.       return true;
  29.    }
  30.  
  31.    public SASLSecurityLayer getSecurityLayer() throws SASLException {
  32.       return null;
  33.    }
  34. }
  35.